home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / xml / __init__.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  1KB  |  40 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. '''Core XML support for Python.
  5.  
  6. This package contains three sub-packages:
  7.  
  8. dom -- The W3C Document Object Model.  This supports DOM Level 1 +
  9.        Namespaces.
  10.  
  11. parsers -- Python wrappers for XML parsers (currently only supports Expat).
  12.  
  13. sax -- The Simple API for XML, developed by XML-Dev, led by David
  14.        Megginson and ported to Python by Lars Marius Garshol.  This
  15.        supports the SAX 2 API.
  16. '''
  17. __all__ = [
  18.     'dom',
  19.     'parsers',
  20.     'sax']
  21. __version__ = '$Revision: 1.15 $'.split()[-2:][0]
  22. _MINIMUM_XMLPLUS_VERSION = (0, 8, 4)
  23.  
  24. try:
  25.     import _xmlplus
  26. except ImportError:
  27.     pass
  28.  
  29.  
  30. try:
  31.     v = _xmlplus.version_info
  32. except AttributeError:
  33.     pass
  34.  
  35. if v >= _MINIMUM_XMLPLUS_VERSION:
  36.     import sys
  37.     sys.modules[__name__] = _xmlplus
  38. else:
  39.     del v
  40.